home *** CD-ROM | disk | FTP | other *** search
- /* EasyCODE(C++) V5.1 03.03.1995 11:07:10 */
- /* EasyCODE O
- If=horizontal
- LevelNumbers=no
- LineNumbers=no
- ScreenFont=Courier New,,80,9220,-11,0,400,0,0,0,0,0,0,3,2,1,49
- PrinterFont=Courier New,,80,17414,-34,0,400,0,0,0,0,0,0,3,2,1,49
- LastLevelId=8 */
-
- /* EasyCODE ( 1
- Header file */
- #include <stdlib.h>
- #include <stdio.h>
- #include <fcntl.h>
- #include <assert.h>
-
- typedef int BOOL;
- #define TRUE (1)
- #define FALSE (0)
-
- #define I_BUFSIZE 1024
- /* EasyCODE - */
- /* --------------------------------------------------------------
- FORWARD REFERENCES
- --------------------------------------------------------------*/
-
- FILE* OpenInput( char* name);
- FILE* OpenOutput( char* name);
- BOOL ReadLine( char* inbuf, FILE* stream);
- long TellPos( FILE* stream);
- void SeekPos( long position, FILE* stream);
- void StoreLine( char* outbuf, FILE* stream);
- void CloseFile( FILE* stream);
- void* malloc();
- /* EasyCODE ) */
-